home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 1
/
Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso
/
FILES
/
BBS
/
MUBBS
/
MUBBS Mod Shells 4⁄92.cpt
/
Shells
/
Module std routines
/
MUBBS jump.c
< prev
next >
Wrap
Text File
|
1992-02-13
|
4KB
|
122 lines
/*
* MUBBS jump.c
*
* This program source code and it's compiled version is
* Copyright (c) 1991 N. Hawthorn.
* This program source code and it's compiled version IS NOT IN THE
* PUBLIC DOMAIN ! Please read the "COPYRIGHT NOTICE / NH" file for details
* regarding use of this program source code and it's compiled version.
*
*
* Code to call back to MUBBS !
*
*/
#define INMUBBSJUMP
#include "MUBBS Module.h"
/* we have to generate our own prototypes for this file ONLY */
int send(void);
int print(void);
int sendtext(void);
int wait(void);
int cmd1(void);
int cmd1noecho(void);
int sendnc(void);
int showline(void);
int clock(void);
int portsin(void);
int passportsin(void);
int module(void);
int gettime(void);
int switchuser(void);
int fopen(void);
int fclose(void);
int fread(void);
int fwrite(void);
int ftell(void);
int fsetpos(void);
int fgetpos(void);
int fseek(void);
int freopen(void);
int fputs(void);
int fputc(void);
int fgetc(void);
int fgets(void);
int fflush(void);
int fprintf(void);
int fscanf(void);
int clearerr(void);
int scanf(void);
int sscanf(void);
int sprintf(void);
int rewind(void);
int rename(void);
int remove(void);
int ungetc(void);
int puts(void);
int perror(void);
int otheruser(void);
int mackey(void);
int loguser(void);
int printout(void);
int versionck(void);
int searchs(void);
/* these are all the routines that you can call, some of them are to */
/* be used carefully. See the accompanying documentation before use ! */
/* Don't worry about the "godoit" stuff here, just see the examples */
send() { ProcPtr hh; G->S=0; godoit; }
print() { ProcPtr hh; G->S=1; godoit; }
sendtext() { ProcPtr hh; G->S=2; godoit; }
wait() { ProcPtr hh; G->S=3; godoit; }
cmd1() { ProcPtr hh; G->S=4; godoit; }
cmd1noecho(){ ProcPtr hh; G->S=5; godoit; }
sendnc() { ProcPtr hh; G->S=6; godoit; }
showline() { ProcPtr hh; G->S=7; godoit; }
clock() { ProcPtr hh; G->S=8; godoit; }
portsin() { ProcPtr hh; G->S=9; godoit; }
passportsin(){ ProcPtr hh; G->S=10; godoit; }
module() { ProcPtr hh; G->S=11; godoit; }
gettime() { ProcPtr hh; G->S=12; godoit; }
switchuser(){ ProcPtr hh; G->S=13; godoit; }
fopen() { ProcPtr hh; G->S=14; godoit; }
fclose() { ProcPtr hh; G->S=15; godoit; }
fread() { ProcPtr hh; G->S=16; godoit; }
fwrite() { ProcPtr hh; G->S=17; godoit; }
ftell() { ProcPtr hh; G->S=18; godoit; }
fsetpos() { ProcPtr hh; G->S=19; godoit; }
fgetpos() { ProcPtr hh; G->S=20; godoit; }
fseek() { ProcPtr hh; G->S=21; godoit; }
freopen() { ProcPtr hh; G->S=22; godoit; }
fputs() { ProcPtr hh; G->S=23; godoit; }
fputc() { ProcPtr hh; G->S=24; godoit; }
fgetc() { ProcPtr hh; G->S=25; godoit; }
fgets() { ProcPtr hh; G->S=26; godoit; }
fflush() { ProcPtr hh; G->S=27; godoit; }
fprintf() { ProcPtr hh; G->S=28; godoit; }
fscanf() { ProcPtr hh; G->S=29; godoit; }
clearerr() { ProcPtr hh; G->S=30; godoit; }
scanf() { ProcPtr hh; G->S=31; godoit; }
sscanf() { ProcPtr hh; G->S=32; godoit; }
sprintf() { ProcPtr hh; G->S=33; godoit; }
rewind() { ProcPtr hh; G->S=34; godoit; }
rename() { ProcPtr hh; G->S=35; godoit; }
remove() { ProcPtr hh; G->S=36; godoit; }
ungetc() { ProcPtr hh; G->S=37; godoit; }
puts() { ProcPtr hh; G->S=38; godoit; }
perror() { ProcPtr hh; G->S=39; godoit; }
otheruser() { ProcPtr hh; G->S=40; godoit; }
mackey() { ProcPtr hh; G->S=41; godoit; }
loguser() { ProcPtr hh; G->S=42; godoit; }
printout() { ProcPtr hh; G->S=43; godoit; }
versionck() { ProcPtr hh; G->S=44; godoit; }
searchs() { ProcPtr hh; G->S=45; godoit; }